home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr40 / radserv.zip / SYSREG.C < prev    next >
C/C++ Source or Header  |  1995-01-23  |  496b  |  43 lines

  1. /*
  2.  * %W% %E% %U%
  3.  *
  4.  */
  5.  
  6. #include "radextrn.h"
  7.  
  8.  
  9. BOOL
  10. ReadParams()
  11. {
  12.     /*
  13.      * Get various params from system registry.
  14.      *
  15.      * For now simply return defaults
  16.      */
  17.    
  18.     rigInfo.tty.tt_adj = &ttyadj;
  19.     return TRUE;
  20. }
  21.  
  22. BOOL
  23. SaveParams()
  24. {
  25.     /*
  26.      * Write various params to system registry.
  27.      */
  28.     return TRUE;
  29. }
  30.  
  31.  
  32. BOOL
  33. UnInstall(version)
  34. int version;
  35. {
  36.     /*
  37.      * Uninstall program. Remove system registry keys, etc.
  38.      */
  39.     return TRUE;
  40. }
  41.  
  42.  
  43.